How can I optimize my development machine's files and directories? [closed]

Posted by LuxuryMode on Programmers See other posts from Programmers or by LuxuryMode
Published on 2012-09-13T15:42:40Z Indexed on 2012/09/13 21:49 UTC
Read the original article Hit count: 211

Like any programmer, I've got a lot of stuff on my machine. Some of that stuff is projects of my own, some are projects I'm working on for my employer, others are open-source tools and projects, etc.

Currently, I have my files organized as follows:

/Code
 --/development (things I'm sort of hacking on plus maybe libraries used in other projects)
    --/scala (organized by language...why? I don't know!)
    --/android
    --/ruby
 --/employer_name
    -- /mobile
          --/android
          --/ios  
 --/open-source (basically my forks that I'm pushing commits back upstream from)
    --/some-awesome-oss-project
    --/another-awesome-one
 --/tools
   random IDE settings sprinkled in here plus some other apps 

As you can see, things are kind of a mess here. How can I keep things organized in some sort of coherent fashion?

© Programmers or respective owner

Related posts about programming-practices

Related posts about Productivity